home *** CD-ROM | disk | FTP | other *** search
/ Aminet 24 / Aminet 24 (1998)(GTI - Schatztruhe)[!][Apr 1998].iso / Aminet / comm / mail / Mutt089src.lha / Mutt-0.89i-AMIGA / src / rfc1524.h < prev    next >
C/C++ Source or Header  |  1998-01-28  |  2KB  |  46 lines

  1. /*
  2.  * Copyright (C) 1996-8 Michael R. Elkins <me@cs.hmc.edu>
  3.  * 
  4.  *     This program is free software; you can redistribute it and/or modify
  5.  *     it under the terms of the GNU General Public License as published by
  6.  *     the Free Software Foundation; either version 2 of the License, or
  7.  *     (at your option) any later version.
  8.  * 
  9.  *     This program is distributed in the hope that it will be useful,
  10.  *     but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  *     GNU General Public License for more details.
  13.  * 
  14.  *     You should have received a copy of the GNU General Public License
  15.  *     along with this program; if not, write to the Free Software
  16.  *     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17.  */ 
  18.  
  19. #ifndef _RFC1524_H
  20. #define _RFC1524_H
  21.  
  22. typedef struct rfc1524_mailcap_entry {
  23. /*  char *contenttype; */ /* we don't need this, as we search for it */
  24.   char *command;
  25.   char *testcommand;
  26.   char *composecommand;
  27.   char *editcommand;
  28.   char *printcommand;
  29.   char *nametemplate;
  30.   char *convert;
  31. /*  char *description; */ /* we don't need this */
  32.   unsigned int needsterminal : 1;  /* endwin() and system */
  33.   unsigned int copiousoutput : 1;  /* needs pager, basically */
  34. } rfc1524_entry;
  35.  
  36. rfc1524_entry *rfc1524_new_entry ();
  37. void rfc1524_free_entry (rfc1524_entry **);
  38. int rfc1524_expand_command (BODY *, char *, char *, char *, int);
  39. int rfc1524_expand_filename (char *, char *, char *, size_t);
  40. int rfc1524_mailcap_parse (BODY *, char *, char *, rfc1524_entry *, int);
  41. int rfc1524_mailcap_lookup (BODY *, char *, rfc1524_entry *, int);
  42. void mutt_adv_mktemp (char *);
  43. int mutt_rename_file (char *, char *);
  44.  
  45. #endif /* _RFC1524_H */
  46.